#code organization

[ follow ]
#code-organization
Nedbatchelder
1 month ago
JavaScript

One way to fix Python circular imports

Avoid circular imports by organizing code in layers or changing import style to import whole modules. [ more ]
CodeProject
1 year ago
JavaScript

WPF MVVM RichText Demo using YDock[Panel]

MVVM pattern is a useful way to organize code and simplify testing applications. [ more ]
Alvinalexander
1 month ago
Scala

Scala 3: Package objeccts are deprecated, how to create types in a top-level package and use them everywhere in your project

In Scala 3, package objects are deprecated, impacting code accessibility across sub-packages. A workaround is to define common types in a 'near' top-level package for import. [ more ]
Marcin Wanago Blog - JavaScript, both frontend and backend
4 months ago
JavaScript

Understanding native JavaScript modules

Breaking code into manageable pieces is essential for complex JavaScript projects.
ES6 introduced the official syntax for handling modules, allowing better code organization and reuse. [ more ]
Medium
4 months ago
Scala

Modular Programming in Scala with the Cake Pattern

The Cake Pattern in Scala enables modular programming and simplifies dependency management.
The Cake Pattern breaks down applications into interchangeable traits, making code management and updates easier. [ more ]
Wisdom Geek
5 months ago
JavaScript

React TypeScript: Simplify Imports with Path Aliases

Path aliases can simplify imports in large and complex codebases, making them more understandable and clear.
Path aliases can be set up in the tsconfig.json file of a TypeScript project to create import path shortcuts. [ more ]
Nedbatchelder
1 month ago
JavaScript

One way to fix Python circular imports

Avoid circular imports by organizing code in layers or changing import style to import whole modules. [ more ]
CodeProject
1 year ago
JavaScript

WPF MVVM RichText Demo using YDock[Panel]

MVVM pattern is a useful way to organize code and simplify testing applications. [ more ]
Alvinalexander
1 month ago
Scala

Scala 3: Package objeccts are deprecated, how to create types in a top-level package and use them everywhere in your project

In Scala 3, package objects are deprecated, impacting code accessibility across sub-packages. A workaround is to define common types in a 'near' top-level package for import. [ more ]
Marcin Wanago Blog - JavaScript, both frontend and backend
4 months ago
JavaScript

Understanding native JavaScript modules

Breaking code into manageable pieces is essential for complex JavaScript projects.
ES6 introduced the official syntax for handling modules, allowing better code organization and reuse. [ more ]
Medium
4 months ago
Scala

Modular Programming in Scala with the Cake Pattern

The Cake Pattern in Scala enables modular programming and simplifies dependency management.
The Cake Pattern breaks down applications into interchangeable traits, making code management and updates easier. [ more ]
Wisdom Geek
5 months ago
JavaScript

React TypeScript: Simplify Imports with Path Aliases

Path aliases can simplify imports in large and complex codebases, making them more understandable and clear.
Path aliases can be set up in the tsconfig.json file of a TypeScript project to create import path shortcuts. [ more ]
morecode-organization
Realpython
7 months ago
Python

Python Basics: Modules and Packages - Real Python

Creating modules helps organize large code projects.
Modules can be imported and used in other files.
Modules can be organized into packages. [ more ]
[ Load more ]